Skip to main content

childadverseeventcomplains

Table: childadverseeventcomplains

The childadverseeventcomplains table stores complaints or observations related to a child’s adverse event.
It is used to record additional details reported during follow-up or investigation of adverse events.


Columns

Column NameData TypeConstraintsDescription
childAdverseEventComplainIdint(11)NOT NULL, AUTO_INCREMENTUnique identifier for each complaint record
createdDatedatetimeNULLTimestamp when the complaint record was created
lastEditedDatedatetimeNULLTimestamp when the complaint record was last edited
childAdverseEventIdint(11)NULLReferences the associated adverse event
complainvarchar(255)NULLComplaint or issue reported related to the adverse event
othervarchar(255)NULLAdditional notes or details
createdByUserIdint(11)NULLUser who created the complaint record
lastEditedByUserIdint(11)NULLUser who last edited the complaint record

Indexes

  1. PRIMARY - Primary key on childAdverseEventComplainId
  2. childAdverseEventId - Index on childAdverseEventId

Foreign Key Relations

  • childAdverseEventIdchildadverseevent.childAdverseEventId
    • Links the complaint to the specific adverse event

Usage Notes

  • Stores complaints or follow-up details related to a child’s adverse event.
  • other field is used for additional remarks or uncommon issues.
  • Audit fields (createdByUserId, lastEditedByUserId, createdDate, lastEditedDate) maintain a history of changes.
  • Ensures referential integrity with the childadverseevent table.